home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / prog / gnu-c / src / gcc-2.7.0-amiga / objc / selector.c < prev    next >
C/C++ Source or Header  |  1995-06-15  |  8KB  |  299 lines

  1. /* GNU Objective C Runtime selector related functions
  2.    Copyright (C) 1993, 1995 Free Software Foundation, Inc.
  3.    Contributed by Kresten Krab Thorup
  4.  
  5. This file is part of GNU CC.
  6.  
  7. GNU CC is free software; you can redistribute it and/or modify it under the
  8. terms of the GNU General Public License as published by the Free Software
  9. Foundation; either version 2, or (at your option) any later version.
  10.  
  11. GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
  12. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  13. FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
  14. details.
  15.  
  16. You should have received a copy of the GNU General Public License along with
  17. GNU CC; see the file COPYING.  If not, write to the Free Software
  18. Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  19.  
  20. /* As a special exception, if you link this library with files compiled with
  21.    GCC to produce an executable, this does not cause the resulting executable
  22.    to be covered by the GNU General Public License. This exception does not
  23.    however invalidate any other reasons why the executable file might be
  24.    covered by the GNU General Public License.  */
  25.  
  26. #include "runtime.h"
  27. #include "objc/sarray.h"
  28. #include "encoding.h"
  29.  
  30. /* Initial selector hash table size. Value doesn't matter much */
  31. #define SELECTOR_HASH_SIZE 128
  32.  
  33. /* Tables mapping selector names to uid and opposite */
  34. static struct sarray* __objc_selector_array = 0; /* uid -> sel */
  35. static struct sarray* __objc_selector_names = 0; /* uid -> name */
  36. static cache_ptr      __objc_selector_hash  = 0; /* name -> uid */
  37.  
  38. static void register_selectors_from_list(MethodList_t);
  39.  
  40. /* Number of selectors stored in each of the above tables */
  41. int __objc_selector_max_index = 0;
  42.  
  43. void __objc_init_selector_tables()
  44. {
  45.   __objc_selector_array = sarray_new (SELECTOR_HASH_SIZE, 0);
  46.   __objc_selector_names = sarray_new (SELECTOR_HASH_SIZE, 0);
  47.   __objc_selector_hash
  48.     = hash_new (SELECTOR_HASH_SIZE,
  49.         (hash_func_type) hash_string,
  50.         (compare_func_type) compare_strings);
  51. }  
  52.  
  53. /* This routine is given a class and records all of the methods in its class
  54.    structure in the record table.  */
  55. void
  56. __objc_register_selectors_from_class (Class class)
  57. {
  58.   MethodList_t method_list;
  59.  
  60.   method_list = class->methods;
  61.   while (method_list)
  62.     {
  63.       register_selectors_from_list (method_list);
  64.       method_list = method_list->method_next;
  65.     }
  66. }
  67.  
  68.  
  69. /* This routine is given a list of methods and records each of the methods in
  70.    the record table.  This is the routine that does the actual recording
  71.    work.
  72.  
  73.    This one is only called for Class objects.  For categories,
  74.    class_add_method_list is called.
  75.    */
  76. static void
  77. register_selectors_from_list (MethodList_t method_list)
  78. {
  79.   int i = 0;
  80.   while (i < method_list->method_count)
  81.     {
  82.       Method_t method = &method_list->method_list[i];
  83.       method->method_name 
  84.     = sel_register_typed_name ((const char*)method->method_name, 
  85.                      method->method_types);
  86.       i += 1;
  87.     }
  88. }
  89.  
  90.  
  91. /* Returns YES iff t1 and t2 have same method types, but we ignore
  92.    the argframe layout */
  93. BOOL
  94. sel_types_match (const char* t1, const char* t2)
  95. {
  96.   if (!t1 || !t2)
  97.     return NO;
  98.   while (*t1 && *t2)
  99.     {
  100.       if (*t1 == '+') t1++;
  101.       if (*t2 == '+') t2++;
  102.       while (isdigit(*t1)) t1++;
  103.       while (isdigit(*t2)) t2++;
  104.       /* xxx Remove these next two lines when qualifiers are put in
  105.      all selectors, not just Protocol selectors. */
  106.       t1 = objc_skip_type_qualifiers(t1);
  107.       t2 = objc_skip_type_qualifiers(t2);
  108.       if (!*t1 && !*t2)
  109.     return YES;
  110.       if (*t1 != *t2)
  111.     return NO;
  112.       t1++;
  113.       t2++;
  114.     }
  115.   return NO;
  116. }
  117.  
  118. /* return selector representing name */
  119. SEL
  120. sel_get_typed_uid (const char *name, const char *types)
  121. {
  122.   struct objc_list *l;
  123.   sidx i;
  124.  
  125.   i = (sidx) hash_value_for_key (__objc_selector_hash, name);
  126.   if (i == 0)
  127.     return 0;
  128.  
  129.   for (l = (struct objc_list*)sarray_get (__objc_selector_array, i);
  130.        l; l = l->tail)
  131.     {
  132.       SEL s = (SEL)l->head;
  133.       if (types == 0 || s->sel_types == 0)
  134.     {
  135.       if (s->sel_types == types)
  136.         {
  137.           return s;
  138.         }
  139.     }
  140.       else if (sel_types_match (s->sel_types, types))
  141.     {
  142.       return s;
  143.     }
  144.     }
  145.  
  146.   return 0;
  147. }
  148.  
  149. /* return selector representing name */
  150. SEL
  151. sel_get_any_uid (const char *name)
  152. {
  153.   struct objc_list *l;
  154.   sidx i;
  155.  
  156.   i = (sidx) hash_value_for_key (__objc_selector_hash, name);
  157.   if (soffset_decode (i) == 0)
  158.     return 0;
  159.  
  160.   l = (struct objc_list*)sarray_get (__objc_selector_array, i);
  161.   if (l == 0)
  162.     return 0;
  163.  
  164.   return (SEL)l->head;
  165. }
  166.  
  167. /* return selector representing name */
  168. SEL
  169. sel_get_uid (const char *name)
  170. {
  171.   return sel_register_typed_name (name, 0);
  172. }
  173.  
  174. /* Get name of selector.  If selector is unknown, the empty string "" 
  175.    is returned */ 
  176. const char*
  177. sel_get_name (SEL selector)
  178. {
  179.   if ((soffset_decode((sidx)selector->sel_id) > 0)
  180.       && (soffset_decode((sidx)selector->sel_id) <= __objc_selector_max_index))
  181.     return sarray_get (__objc_selector_names, (sidx) selector->sel_id);
  182.   else
  183.     return 0;
  184. }
  185.  
  186. BOOL
  187. sel_is_mapped (SEL selector)
  188. {
  189.   unsigned int idx = soffset_decode ((sidx)selector->sel_id);
  190.   return ((idx > 0) && (idx <= __objc_selector_max_index));
  191. }
  192.  
  193.  
  194. const char*
  195. sel_get_type (SEL selector)
  196. {
  197.   if (selector)
  198.     return selector->sel_types;
  199.   else
  200.     return 0;
  201. }
  202.  
  203. /* The uninstalled dispatch table */
  204. extern struct sarray* __objc_uninstalled_dtable;
  205.  
  206. /* Store the passed selector name in the selector record and return its
  207.    selector value (value returned by sel_get_uid). */
  208. SEL
  209. __sel_register_typed_name (const char *name, const char *types, 
  210.                struct objc_selector *orig)
  211. {
  212.   struct objc_selector* j;
  213.   sidx i;
  214.   struct objc_list *l;
  215.  
  216.   i = (sidx) hash_value_for_key (__objc_selector_hash, name);
  217.   if (soffset_decode (i) != 0)
  218.     {
  219.       for (l = (struct objc_list*)sarray_get (__objc_selector_array, i);
  220.        l; l = l->tail)
  221.     {
  222.       SEL s = (SEL)l->head;
  223.       if (types == 0 || s->sel_types == 0)
  224.         {
  225.           if (s->sel_types == types)
  226.         {
  227.           if (orig)
  228.             {
  229.               orig->sel_id = (void*)i;
  230.               return orig;
  231.             }
  232.           else
  233.             return s;
  234.         }
  235.         }
  236.       else if (!strcmp (s->sel_types, types))
  237.         {
  238.           if (orig)
  239.         {
  240.           orig->sel_id = (void*)i;
  241.           return orig;
  242.         }
  243.           else
  244.         return s;
  245.         }
  246.     }
  247.       if (orig)
  248.     j = orig;
  249.       else
  250.     j = __objc_xmalloc (sizeof (struct objc_selector));
  251.  
  252.       j->sel_id = (void*)i;
  253.       j->sel_types = (const char*)types;
  254.       l = (struct objc_list*)sarray_get (__objc_selector_array, i);
  255.     }
  256.   else
  257.     {
  258.       __objc_selector_max_index += 1;
  259.       i = soffset_encode(__objc_selector_max_index);
  260.       if (orig)
  261.     j = orig;
  262.       else
  263.     j = __objc_xmalloc (sizeof (struct objc_selector));
  264.     
  265.       j->sel_id = (void*)i;
  266.       j->sel_types = (const char*)types;
  267.       l = 0;
  268.     }
  269.  
  270.   DEBUG_PRINTF ("Record selector %s[%s] as: %ld\n", name, types, 
  271.         soffset_decode (i));
  272.   
  273.   {
  274.     int is_new = (l == 0);
  275.     l = list_cons ((void*)j, l);
  276.     sarray_at_put_safe (__objc_selector_names, i, (void *) name);
  277.     sarray_at_put_safe (__objc_selector_array, i, (void *) l);
  278.     if (is_new)
  279.       hash_add (&__objc_selector_hash, (void *) name, (void *) i);
  280.   }
  281.  
  282.   sarray_realloc(__objc_uninstalled_dtable, __objc_selector_max_index+1);
  283.  
  284.   return (SEL) j;
  285. }
  286.  
  287. SEL
  288. sel_register_name (const char *name)
  289. {
  290.   return __sel_register_typed_name (name, 0, 0);
  291. }
  292.  
  293. SEL
  294. sel_register_typed_name (const char *name, const char *type)
  295. {
  296.   return __sel_register_typed_name (name, type, 0);
  297. }
  298.  
  299.